home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 October: Mac OS SDK / Dev.CD Oct 00 SDK1.toast / Development Kits / Mac OS / Multiprocessing 2.1v2 SDK / Sample Code / MPExceptionTest ƒ / Carbon.pch < prev    next >
Encoding:
Text File  |  2000-04-27  |  569 b   |  29 lines  |  [TEXT/CWIE]

  1. /**\
  2. |**|    Carbon.pch
  3. \**/
  4.  
  5. #pragma once
  6.  
  7. #define TARGET_API_MAC_CARBON             1
  8. #define ACCESSOR_CALLS_ARE_FUNCTIONS    1
  9.  
  10. // Support for automatically dealing with debug vs. end-user builds
  11. #if __POWERPC__
  12.     #if __option (peephole)
  13.         #define __DEBUGBUILD__            0
  14.     #else
  15.         #define __DEBUGBUILD__            1
  16.     #endif
  17. #endif
  18.  
  19. #if __option(precompile)
  20.     #pragma precompile_target "Carbon_pch"
  21.     #pragma once on
  22.     #pragma check_header_flags on
  23.     #define USE_PRECOMPILED_HEADER true
  24.     // Now just include the "MacHeaders.c" source file
  25.     #include "MacHeaders.c"
  26. #else
  27.     #include "Carbon_pch"
  28. #endif
  29.